home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / FEBE (Firefox Environment Backup Extension) 5.0 / febe-5.0-fx.xpi / chrome / febe.jar / content / febeProfile.xul < prev    next >
Extensible Markup Language  |  2007-06-01  |  3KB  |  68 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://febe/skin/febe.css" type="text/css"?>
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE window [
  6.     <!ENTITY % febeDTD SYSTEM "chrome://febe/locale/febe.dtd" >
  7.     %febeDTD;
  8.     <!ENTITY % febeHelpDTD SYSTEM "chrome://febe/locale/febeHelp.dtd" >
  9.     %febeHelpDTD;
  10. ]>
  11.  
  12. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  13.                 id="febeRestoreProfileWindow"
  14.                 title="&febe.caption.restore.profile;"
  15.                 autostretch="always"
  16.                 onload="febeProfileWindowInit();"
  17.                 ondialogaccept="febeStartProfileRestore();">
  18.     
  19.     <script type="application/x-javascript" src="chrome://febe/content/febeCommon.js"/>
  20.     <script type="application/x-javascript" src="chrome://febe/content/febe.js"/>
  21.     <script type="application/x-javascript" src="chrome://febe/content/febeScheduledBackup.js"/>
  22.     
  23.     <stringbundleset id="stringbundleset"> 
  24.         <stringbundle id="febe-strings" src="chrome://febe/locale/febe.properties"/>
  25.     </stringbundleset>
  26.  
  27.     <groupbox id="febeProfileOptions">
  28.         <caption>
  29.             <label value="&febe.caption.restore.profile;" />
  30.             <image id="febeHelp05" tooltiptext="&febe.tooltiphelp.msg;" onclick="febeHelp('05');" class="helpButton"/>
  31.         </caption>
  32.         <grid flex="1">
  33.             <columns>
  34.                 <column flex="2"/>
  35.                 <column flex="1"/>
  36.             </columns>
  37.             <rows>
  38.                 <row>
  39.                     <label id="febeCurrentProfileLabel" value="&febe.currentprofile.label;"/>
  40.                     <label id="febeCurrentProfileText" style="font-weight: bold;" value="&febe.default.selected.profile;"/>
  41.                 </row>
  42.                 <row>
  43.                     <label id="febeSelectedProfileLabel" value="&febe.selectedtprofile.label;"/>
  44.                     <label id="febeSelectedProfileText" style="font-weight: bold;" value="&febe.default.selected.profile;"/>
  45.                 </row>
  46.                 <row>
  47.                     <label id="febeDestinationProfileLabel" value="&febe.destinationprofile.label;"/>
  48.                     <label id="febeDestinationProfileText" style="font-weight: bold;" value="&febe.default.selected.profile;"/>
  49.                 </row>
  50.             </rows>
  51.         </grid>        
  52.             <listbox rows="6" id="febeProfileList" control="febeDestinationProfileText"
  53.                              onselect="febeProfileSelected();">
  54.                 <listhead>
  55.                     <listheader label="&febe.profilelist.caption;"/>
  56.                 </listhead>
  57.                 <listitem label="" hidden="true"/>
  58.             </listbox> 
  59.     </groupbox>
  60.     <separator class="thin"/>
  61.     <groupbox id="febeProfileResoreBox" hidden="true">
  62.         <caption>
  63.             <label value= "&febe.restore.progress.caption;"/>
  64.         </caption>
  65.         <progressmeter id="febeRestoreProgressmeterID" mode="undetermined" value="0%"/>
  66.     </groupbox>
  67. </dialog>
  68.